home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / hardware / msec_12 / makefile.bcc < prev    next >
Makefile  |  1991-12-11  |  548b  |  22 lines

  1. # Makefile for Borland's MAKE v2.0 and BCC v2.0
  2. # Change your paths as appropriate.
  3.  
  4. OBJS = testtime.obj timer.obj timer1.obj
  5. MODEL = s
  6. TCINC = \borland\include
  7. TCLIB = \borland\lib
  8. WFLAGS = -wamb -wamp -wpro -wcln -wdef -wsig -wnod -wstv -wucp -wuse
  9. CFLAGS = -ff- -K -k -d -P-.C
  10.  
  11. testtime.exe:    $(OBJS)
  12.     bcc -o$*.exe $(CFLAGS) $(WFLAGS -m$(MODEL) -I$(TCINC) -L$(TCLIB) $(OBJS)
  13.  
  14. timer.c:    timer.h
  15. testtime.c:    timer.h timer.c
  16.  
  17. timer1.obj:    timer1.asm
  18.     tasm /ml timer1
  19.  
  20. .c.obj:
  21.     bcc -c $(CFLAGS) $(WFLAGS) -m$(MODEL) -I$(TCINC) $<
  22.